home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / cvs-1_3.lha / cvs-1.3 / examples / Makefile.in < prev    next >
Makefile  |  1992-04-10  |  1KB  |  58 lines

  1. # Makefile for GNU CVS example files.
  2. # Do not use this makefile directly, but only from `../Makefile'.
  3. # Copyright (C) 1986, 1988-1990 Free Software Foundation, Inc.
  4.  
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2, or (at your option)
  8. # any later version.
  9.  
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # GNU General Public License for more details.
  14.  
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19. # @(#)Makefile.in 1.3 92/04/10
  20.  
  21. SHELL = /bin/sh
  22.  
  23. srcdir = @srcdir@
  24. @VPATH@
  25.  
  26. DISTFILES = Makefile.in commitinfo loginfo modules rcsinfo
  27.  
  28. all:
  29. .PHONY: all
  30.  
  31. install: all
  32. .PHONY: install
  33.  
  34. tags:
  35. .PHONY: tags
  36.  
  37. TAGS:
  38. .PHONY: TAGS
  39.  
  40. ls:
  41.     @echo $(DISTFILES)
  42. .PHONY: ls
  43.  
  44. clean:
  45.     /bin/rm -f *.o core
  46. .PHONY: clean
  47.  
  48. distclean: clean
  49.     rm -f Makefile
  50. .PHONY: distclean
  51.  
  52. realclean: distclean
  53. .PHONY: realclean
  54.  
  55. dist:
  56.     ln $(DISTFILES) ../`cat ../.fname`/examples
  57. .PHONY: dist
  58.